@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");
@import url("../css/variables.css");
@import url("../css/header.css");
@import url("../css/footer.css");
.uk-position-relative {
    position: relative !important;
}

.uk-position-absolute {
    position: absolute !important;
}

.uk-position-fixed {
    position: fixed !important;
}

.uk-position-z-index {
    z-index: 1;
}

.uk-margin-left-60 {
    margin-left: 60px;
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.uk-section {
    display: flow-root;
    box-sizing: border-box;
    /* 1 */
    padding-top: 40px;
    padding-bottom: 40px;
}

body {
    font-family: "Inter", sans-serif;
    background: #f8fafc;
}

.uk-h1,
.uk-h2,
.uk-h3,
.uk-h4,
.uk-h5,
.uk-h6,
.uk-heading-2xlarge,
.uk-heading-large,
.uk-heading-medium,
.uk-heading-small,
.uk-heading-xlarge,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Inter", sans-serif;
}

.title {
    font-size: 36px;
    line-height: 43px;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 20px;
}

.sub-title {
    font-size: 18px;
    font-weight: 400;
    color: var(--dark-green);
}

.uk-button {
    text-transform: none;
}

.uk-margin-left-20 {
    margin-left: 20px;
}

.orange-btn {
    border-radius: 10px;
    background: linear-gradient(90deg, var(--c1, #ff4b1f) 0%, var(--c2, #ff9068) 50%, var(--c2, #ff4b1f) 100%) var(--x, 0)/ 200%;
    padding: 18px 50px;
    font-size: var(--header-font-size);
    line-height: var(--header-font-size);
    color: var(--white);
    font-weight: 700;
    transition: .5s;
    transition-property: color, background-position, border-color;
}

.orange-btn-success-alert {
    border-radius: 10px !important;
    background: linear-gradient(90deg, var(--c1, #ff4b1f) 0%, var(--c2, #ff9068) 50%, var(--c2, #ff4b1f) 100%) var(--x, 0)/ 200% !important;
    padding: 18px 50px !important;
    font-size: var(--header-font-size) !important;
    line-height: var(--header-font-size) !important;
    color: var(--white) !important;
    font-weight: 700 !important;
    transition: .5s !important;
    border: none !important;
    outline: none !important;
}

.orange-btn:hover {
    color: var(--white);
    --x: 100%;
}

.green-btn {
    border-radius: 10px;
    background: linear-gradient(90deg, var(--c1, #05B1B7) 0%, var(--c2, #00CDAC) 50%, var(--c2, #05B1B7) 100%) var(--x, 0)/ 200%;
    padding: 0 30px;
    font-size: var(--header-font-size);
    line-height: 56px;
    color: var(--white);
    font-weight: 700;
    transition: .5s;
    transition-property: color, background-position, border-color;
}

.green-btn:hover {
    color: var(--white);
    --x: 100%;
}

.outline-btn {
    display: inline-flex;
    align-items: center;
    border-radius: 10px;
    background: transparent;
    padding: 10px 24px;
    font-size: var(--header-font-size);
    line-height: var(--header-font-size);
    color: var(--white);
    font-weight: 700;
    border: 1px solid var(--white);
    margin-left: 15px;
}

.outline-btn::before {
    content: url("../images/play-arrow.svg");
    margin-right: 10px;
}

.outline-btn:hover {
    color: var(--white);
}

.ui-datepicker .ui-datepicker-title select {
    border: none;
}

.promo {
    color: var(--white);
    background: var(--promo-background);
    position: relative;
    /* padding-bottom: 80px; */
}

.promo-images {
    background: url("../images/promo-background.png");
    background-size: cover;
    background-repeat: no-repeat;
}

.promo h2 {
    color: var(--white);
    font-size: 48px;
    font-weight: 700;
}

.promo p {
    color: #b7dcff;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 60px;
    margin-top: 20px;
}

.promo .mockup {
    width: 50%;
    margin: 0;
    position: relative;
    z-index: 2;
}

.promo-bar {
    background: linear-gradient(180deg, #fffef9 0%, #f0efdf 100%);
    border-radius: 20px;
    padding: 40px;
}

.promo-bar div span:first-of-type {
    color: var(--dark-green);
    font-size: 36px;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
}

.promo-bar div {
    position: relative;
}

.promo-bar div::after {
    content: url("../images/seperator.png");
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.promo-bar div:last-child::after {
    content: "";
}

.promo-bar div span {
    color: var(--dark-green);
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    display: flex;
    justify-content: center;
}

.promo-bar-position {
    margin-top: -80px;
    position: relative;
}

.sectionFeatures {
    padding: 70px 0;
}

.sectionFeatures .title {
    font-size: 36px;
    line-height: 43px;
    font-weight: 700;
    color: var(--dark-green);
    text-align: center;
}

.sectionFeatures .sub-title {
    margin: 0 auto;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    color: var(--dark-green);
}

.sectionFeatures .column-content {
    padding: 45px 0 85px 0;
}

.sectionFeatures .icon-features {
    max-width: initial;
}

.sectionFeatures .column-content h5 {
    color: var(--dark-green);
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.sectionFeatures .column-content p {
    font-size: 14px;
    line-height: 21px;
    margin: 5px 0;
}

.sectionFeatures .features-btn {
    color: #607b96;
    background-color: #e7f0f7;
    font-size: 15px;
    line-height: 18px;
    display: flex;
    max-width: 200px;
    font-weight: 700;
    padding: 18px;
    justify-content: center;
    border-radius: 10px;
    transition: 0.3s ease background;
    margin: 0 auto;
}

.sectionFeatures .features-btn:hover {
    color: #e7f0f7;
    background-color: #607b96;
    text-decoration: none;
}

.second-mockup .orange-btn {
    margin: 64px 0;
}

.second-mockup .mockup-screen img {
    width: 80%;
}

.second-mockup .mockup-screen img:nth-child(2) {
    margin-left: -25%;
}

.second-mockup .mockup-screen img:nth-child(3) {
    margin-left: -25%;
}

.user-comments.uk-section-large {
    padding-top: 140px;
    padding-bottom: 90px;
}

.user-comments h3,
.user-comments p {
    color: var(--dark-green);
}

.user-comments h3 {
    font-size: 36px;
    font-weight: 700;
    line-height: 43px;
}

.user-comments p {
    font-size: 18px;
    font-weight: 400;
}

.user-comments .user {
    padding: 30px;
    border-radius: 25px;
    transition: 0.3s ease all;
    position: relative;
}

.user-comments .user .circle {
    margin-right: 20px;
    border-radius: 50%;
    border: 5px solid #dde8f0;
    transition: 0.6s ease border;
}

.user-comments .user:hover .circle {
    border: 5px solid #fff;
}

.user-comments .user:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    cursor: grab;
}

.user-comments .user:hover {
    background: var(--white);
    box-shadow: 0px 40px 60px rgb(112 144 176 / 10%);
}

.user-comments .user-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-green);
}

.user-comments .user-job {
    color: #607b96;
    font-size: 14px;
    font-weight: 400;
}

.user-comments .user-text {
    font-size: 16px;
    font-weight: 400;
    color: var(--dark-green);
    padding: 20px 0;
}

.user-comments .user-pic {
    border: 4px solid #2f2f6a;
    border-radius: 100%;
    overflow: hidden;
}

.uk-dotnav>*>* {
    background: #a7b7c8;
    border-color: #a7b7c8;
}

.user-comments .uk-dotnav>.uk-active>* {
    width: 10px;
    background-color: var(--dark-green);
}


/* .user-comments .uk-active .user {
  background: #2F2F6A;
  box-shadow: 0px 30px 60px rgb(0 0 0 / 15%);
} */

.user-comments.uk-section-large,
.news.uk-section-large {
    padding-top: 120px;
    padding-bottom: 60px;
}

.section-prdducts {
    background: var(--light-gray);
    color: #fff;
}

.section-prdducts .uk-slider-container {
    overflow: visible;
}

.section-prdducts .item {
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.2s;
}

.section-prdducts .item .logo {
    padding: 0 20px;
    height: 80px;
    display: flex;
    align-items: center;
}

.section-prdducts .item .text {
    line-height: 24px;
    padding: 20px;
}

.section-prdducts .item .text p {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.section-prdducts .item .text .uk-button {
    margin-top: 10px;
    background-color: transparent;
    color: #1485ea;
    border-color: #1485ea;
}

.section-prdducts .item .text .uk-button .uk-icon {
    margin-left: 4px;
}

.section-prdducts .item:hover {
    box-shadow: 0px 20px 40px rgba(20, 133, 234, 0.08);
    transform: translateY(-20px);
}

.section-prdducts .item:hover .uk-button {
    background-color: #1485ea;
    color: #fff;
}

.section-prdducts .uk-child-width-1-4\@l >* {
    width: calc(100% / 1 / 3.644);
}

.uk-dotnav {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
    margin-left: -4px;
}

.uk-dotnav>* {
    flex: none;
    padding-left: 4px;
}

@media (max-width: 639px) {
    .section-prdducts .uk-slider-items>* {
        width: 75%;
    }
}

.price {
    padding: 0 0 80px 0;
    overflow: hidden;
}

.price .sub-title {
    margin-bottom: 100px;
}

.price .price-card {
    background: #ffffff;
    box-shadow: 0px 40px 60px rgb(112 144 176 / 2%);
    border-radius: 20px;
    transition: 0.5s ease box-shadow;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.price .price-card:hover {
    box-shadow: 0px 40px 60px rgb(112 144 176 / 2%);
}

.price .price-card .badge {
    /* color: #05B1B7;
    border: 1px solid #05B1B7;
    box-sizing: border-box;
    border-radius: 10px;
    display: inline-flex;
    padding: 12px;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 12px; */
    font-weight: 600;
    font-size: 13px;
    line-height: 43px;
    color: #fff;
    margin-bottom: 14px;
}

.price .price-card .badge span {
    background: #F9BF1E;
    border-radius: 5px;
    padding: 4px 16px;
}

.price .price-card .uk-button {
    margin: auto auto 0;
    min-width: 180px;
}

.price .price-card ul {
    padding: 0;
    margin-top: 30px;
    margin-bottom: 40px;
}

.price .price-card ul li {
    list-style-type: none;
    font-size: 16px;
    font-weight: 400;
    display: flex;
    margin: 14px 0;
}

.price .price-card ul li::before {
    content: url("../images/check-green.svg");
    margin-right: 16px;
}

.price .price-card .payment-price {
    color: #ff5024;
    font-size: 48px;
    line-height: 58px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price .price-card .payment-price s {
    font-size: 24px;
    font-weight: 400;
    align-self: self-end;
    line-height: 1;
    padding-bottom: 10px;
    color: #3C6576;
}

.price .price-card .uk-card-title {
    font-size: 24px;
    font-weight: 700;
    margin: 8px 0;
}

.price .price-card .icon {
    margin-bottom: 14px;
}

.price .price-btn {
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    display: block;
    margin: 0 auto;
    padding: 18px 0;
    color: #fff;
    background: linear-gradient(90deg, #05b1b7 0%, #00cdac 100%);
    border-radius: 10px;
    text-decoration: none;
    width: 180px;
}


/*
 * Pricing Card
 */

.pricing-table {
    font-weight: 500;
    color: var(--dark-blue);
    background: #EDF4F9;
    border-radius: 20px;
    padding: 30px;
}

.pricing-table ul li {
    min-height: 60px;
}

.pricing-table .uk-list>:nth-child(n+2) {
    margin-top: 0;
}

.pricing-table ul li::before {
    display: none;
}

.pricing-table ul li.null::after {
    content: '';
    background-color: var(--dark-blue);
    margin-top: 14px;
    width: 20px;
    height: 2px;
    display: block;
}

.pricing-table .head {
    font-weight: 500;
    box-sizing: border-box;
}

.pricing-table .active-price, 
.pricing-table .item.active-price .payment-price b,
.pricing-table .item.active-price h3,
.pricing-table .item.active-price .payment-price:not(.free) s{
    color:#fff;
    background:#03C3B1;
    display:block;
    border-radius:20px;
}

.pricing-table .item {
    border-radius: 20px;
    box-sizing: border-box;
    display:block;
    overflow:hidden;
    transition: .2s ease-in-out;
    transition-property: background-color, box-shadow;
    padding:35px 0 20px 0;
}

/* .pricing-table .item:hover {
    background-color: #fff;
    box-shadow: 0px 40px 60px rgba(112, 144, 176, 0.1);
} */

.pricing-table .subscribe-btn {
    color: #03C3B1;
    font-weight: 700;
    background: transparent;
    border:1px solid #03C3B1;
    border-radius: 10px;
    font-size: 16px;
    line-height: 19px;
    padding: 18px 20px;
    min-width: 162px;
}

.pricing-table .subscribe-reverse-btn {
    color: #03C3B1;
    font-weight: 700;
    background: #fff;
    border:1px solid #fff;
    border-radius: 10px;
    font-size: 16px;
    line-height: 19px;
    padding: 18px 20px;
    min-width: 162px;
}

.pricing-table .item ul li {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pricing-table .item .badge {
    font-weight: 600;
    font-size: 13px;
    line-height: 40px;
    color: #fff;
    /* color: #05B1B7;
    border: 1px solid #05B1B7;
    box-sizing: border-box;
    border-radius: 10px;
    display: inline-flex;
    padding: 12px;
    font-weight: 600;
    font-size: 13px; */
}

.pricing-table .item .badge span {
    background: #F9BF1E;
    border-radius: 5px;
    padding: 4px 16px;
}

.pricing-table .item .payment-price {
    font-size: 18px;
    color: #FF5024;
    min-height: 80px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.pricing-table .item .payment-price.free {
    color: var(--dark-blue);
    font-size: 20px;
    font-weight: bold;
}

.pricing-table .item .payment-price:not(.free) s {
    color: #3C6576;
    padding-top: 10px;
}

.pricing-table .item h3 {
    font-size: 20px;
    margin-bottom: 0;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pricing-table .item h3 span {
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    color: #FF5024;
    margin-left: 5px;
}

.pricing-table .item .payment-price b {
    font-size: 34px;
    line-height: 41px;
    display: block;
}

.pricing-table .item .uk-button {
    margin-top: 50px;
}

@media (max-width: 639px) {
    .price {
        padding-bottom: 0;
    }

    .price .uk-slider {
        margin-right: -15px;
        padding-bottom: 80px;
    }

    .price .uk-slider > .uk-slider-items {
        margin-left: -10px;
    }

    .price .uk-slider > .uk-slider-items > * {
        padding-left: 10px;
        width: 90%;
    }
}

.banner {
    margin-bottom: 100px;
}

.banner-color {
    background: linear-gradient(90deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 20px;
    display: block;
    position: relative;
    overflow: hidden;
}

.banner .rectangle {
    background: url("../images/rectangle.svg") right top no-repeat;
    width: calc(100% - 80px);
    height: 100%;
    padding: 60px 40px;
}

.banner .banner-color .mockup img:nth-child(1) {
    position: absolute;
    left: -38px;
    top: -69px;
}

@media (max-width: 992px) {
    .banner .banner-color .mockup img:nth-child(1) {
        top: -50px;
    }
}

.banner .banner-color .mockup img:nth-child(2) {
    position: absolute;
    right: -30px;
    top: 4px;
}

.banner .title,
.banner .sub-title {
    color: var(--white);
}

.banner .sub-title {
    font-size: 14px;
    margin: 10px 0 40px 0;
}

.custom-modal-height {
    height: 100vh;
}

.custom-padding {
    padding: 0px !important;
}

.login-step .uk-modal-dialog {
    border-radius: 30px;
}

.promo.promo-sub {
    padding-bottom: 0;
}

.promo-sub p {
    margin-bottom: 0;
}

.features .phone-1 {
    max-width: 380px;
    float: right;
    position: relative;
    right: -52px;
    top: 20px;
    margin-top: 50px;
}

.features .shedule-1 {
    position: absolute;
    right: 27%;
    bottom: 11%;
    max-width: 295px;
}

.features .phone-2 {
    max-width: 380px;
    float: left;
    position: relative;
    left: -74px;
    top: 38px;
    /* margin-top: 50px; */
}

.features .question-2 {
    position: absolute;
    right: 10%;
    bottom: 2%;
    max-width: 295px;
}

.features .phone-3 {
    max-width: 380px;
    float: right;
    position: relative;
    right: -52px;
    top: 38px;
    /* margin-top: 100px; */
}

.features .question-bank-3 {
    position: absolute;
    right: 28%;
    bottom: 5%;
    max-width: 295px;
}

.features .phone-5 {
    max-width: 480px;
    float: right;
    position: relative;
    right: -52px;
    top: 38px;
    /* margin-top: 100px; */
}

.features .screenselect-5 {
    position: absolute;
    right: 25%;
    bottom: 6%;
    max-width: 395px;
}

.features .savenote {
    position: absolute;
    right: 0;
    bottom: -5%;
    max-width: 350px;
}

.features h5 {
    color: var(--dark-green);
    line-height: 58px;
    font-size: 48px;
    font-weight: 400;
}

.features h6 {
    font-weight: 700;
    font-size: 28px;
}

.features p {
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    color: var(--dark-green);
}

.features .bg-light {
    color: var(--dark-green);
    background: var(--light-gray);
}

.features .bg-light .features-column {
    display: flex;
    flex-direction: row-reverse;
}


/* .features .features-column:nth-child(2n + 2) {
  display: flex;
  flex-direction: row-reverse;
} */

.login-container .title {
    font-size: 36px;
    font-weight: 800;
    color: #0b3f54;
    margin: 0;
}

.login-step .input-line {
    padding-top: 30px;
}

.login-step .input-line label {
    font-size: 14px;
    line-height: 16px;
    font-weight: 600;
    color: #0b3f54;
}

.login-step .input-line .uk-input {
    margin: 10px 0px;
    background: #ecf2f6;
    border-radius: 10px;
    height: 56px;
    color: #0b3f54;
    font-size: 16px;
}

.l {
    text-align: right;
    float: right;
    margin-top: 20px;
    font-size: 16px;
    font-weight: 700;
}

.login-step .login-container {
    padding: 50px 40px 0px 40px;
}

.login-container .orange-btn {
    height: 56px;
    margin-top: 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 5;
    color: white;
    border-radius: 10px;
}

.or-continue-with p {
    position: relative;
    border-bottom: 1px solid #ccc;
    height: 30px;
    line-height: 30px;
}

.or-continue-with p span {
    position: absolute;
    top: 15px;
    width: 123px;
    background: white;
    left: 50%;
    transform: translate(-50%, 0);
    padding: 0 1%;
}

.social-media {
    margin-top: 20px;
}

.social-icons {
    display: flex;
    justify-content: space-around;
}

.social-icons div {
    height: 56px;
    border-radius: 10px;
    box-shadow: 0px 10px 30px rgba(112, 144, 176, 0.1);
    padding: 10px 50px;
}

.social-icons .apple,
.facebook,
.google {
    display: flex;
    align-items: center;
}

.create-account p span {
    color: #ff4b1f;
}

.create-account p {
    font-size: 14px;
    text-align: center;
    padding-top: 43px;
}

.uk-modal-custom-width {
    width: 456px;
}

#sign-up .error,
#register .error {
    color: #eb3449 !important;
    display: block;
    margin-bottom: 5px;
}

.login-container .pass-contianer {
    position: relative;
}

.login-container .toggle-password {
    position: absolute;
    top: 50%;
    right: 22px;
    transform: translate(0, -50%);
}

#create-account-modal .input-line input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border: 1px solid #859fa9;
    border-radius: 5px;
}

.input-line .uk-checkbox:checked,
.uk-checkbox:indeterminate,
.uk-radio:checked {
    background-color: #ff6d43;
}

.input-line input[type="checkbox"] {
    border: 1px solid #859fa9;
    margin-top: 0px;
    margin-right: 5px;
}

.input-line .checkbox-contain {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    justify-content: flex-start;
}

.input-line .checkbox-contain span {
    font-size: 14px;
    color: #607b96;
}

.login-step .create-account a {
    color: #ff6d43;
    font-weight: 700;
    text-decoration: none;
}

.subtitle-contain {
    display: flex;
    align-items: flex-start;
    margin: 15px 0px 20px 0px;
}

.subtitle-contain img {
    margin-top: 5px;
}

.subtitle-contain .subtitle {
    padding-left: 10px;
}

#verification-form {
    display: flex;
    padding: 0 15px;
    flex-direction: column;
}

#verification-form .uk-input {
    height: 100px;
    margin-left: 10px;
    font-size: 36px;
    text-align: center;
    font-weight: 600;
    box-shadow: 0px 10px 30px rgba(112, 144, 176, 0.1);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

#verification .resend-code {
    margin-top: 30px;
    text-align: center;
    font-size: 16px;
    color: #0b3f54;
}

#verification .resend-code span {
    color: #ff6d43;
    font-weight: 700;
}

#verification .resend-code p {
    margin: 0;
}

#verification button {
    margin-bottom: 50px;
}

#verification .login-container {
    padding-bottom: 50px;
}

#verification .top-icon {
    margin-left: -20px;
    margin-bottom: 15px;
}

#verification-form .uk-input:focus {
    box-shadow: 0px 10px 30px rgba(112, 144, 176, 0.1);
    background-color: white !important;
    border: none;
}

#verification-form .uk-input {
    border: none;
}

.resend-code span {
    cursor: pointer;
}

#sign-up input.error,
#register input.error,
#verification-form input.error {
    color: black;
    background: rgba(235, 52, 73, 0.05);
    border: 1px solid rgba(235, 52, 73, 0.7);
}

#verification-form input.error {
    color: #eb3449 !important;
}

.transparent-icon {
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    color: var(--dark-green);
}

.form-icon-back {
    margin-left: -20px;
    margin-bottom: 15px;
}

#forgot-password-form.login-step.input-line {
    padding-top: 20px;
}

#forgot-password-form .orange-btn {
    margin: 100px 0 40px 0;
}

#check-mail .resend-code {
    margin: 68px 0;
}

.error {
    color: #eb3449 !important;
    display: block;
    margin-bottom: 5px;
}

input.error {
    background: rgba(235, 52, 73, 0.05) !important;
    border: 1px solid rgba(235, 52, 73, 0.7);
}

label.error {
    font-weight: 700;
}

.uk-input.error:focus,
.uk-select.error:focus,
.uk-textarea.error:focus {
    border: 1px solid rgba(235, 52, 73, 0.7);
    box-shadow: rgba(235, 52, 73, 0.1) 0px 4px 12px;
}

.login-step .input-line label a {
    color: #0b3f54;
    text-decoration: none;
}

.resend-code p a {
    color: #ff4b1f;
    text-decoration: none;
    font-weight: 700;
}

#become-a-tutor .login-container {
    padding: 0;
}

#become-a-tutor .uk-modal-custom-width,
#first-stap-modal .uk-modal-custom-width {
    width: 750px;
}

#become-a-tutor .list-steps,
#first-stap-modal .list-steps,
#privacy-policy-modal .list-steps {
    padding: 0px 42px 50px 42px;
    counter-reset: #0b3f54;
}

#become-a-tutor .list-steps .title h2,
#first-stap-modal .list-steps .title h2 {
    font-size: 24px;
    font-weight: 700;
}

#become-a-tutor .list-steps ul,
#first-stap-modal .list-steps ul {
    font-size: 16px;
    line-height: 36px;
    padding-left: 19px;
}

#become-a-tutor .banner,
#first-stap-modal .banner {
    margin: 0px;
}

#become-a-tutor .uk-modal-dialog,
#first-stap-modal .uk-modal-dialog {
    border-radius: 10px;
}

#first-stap-modal .uk-modal-dialog {
    border-radius: 20px;
}

#become-a-tutor .step:nth-child(2) li::before,
#first-stap-modal .step:nth-child(2) li::before {
    content: "+";
    font-weight: 700;
    color: #0b3f54;
    margin-right: 7px;
}

#become-a-tutor .step:nth-child(2) li,
#first-stap-modal .step:nth-child(2) li {
    list-style-type: none;
}

#become-a-tutor .step:nth-child(2) ul,
#first-stap-modal .step:nth-child(2) ul {
    padding-left: 0px;
}

#become-a-tutor .step:nth-child(3) ul,
#first-stap-modal .step:nth-child(3) ul {
    list-style-type: none;
    padding-left: 0;
}

#become-a-tutor .title h2 {
    margin-bottom: 10px;
    margin-top: 40px;
}

#first-stap-modal .title h2 {
    margin-bottom: 10px;
    margin-top: 30px;
    padding-right: 10px;
}

#become-a-tutor .list-steps p,
#first-stap-modal .list-steps p {
    margin: 32px 0px 45px 0px;
}

#become-a-tutor .orange-btn,
#first-stap-modal .orange-btn {
    margin: 0;
    padding: 0 50px;
}

#verification-code .login-container,
#verification-code-success .login-container,
#check-mail .login-container {
    padding: 50px 40px 40px 40px;
}

#verification-code .login-container .orange-btn,
#verification-code-success .login-container .orange-btn {
    margin-top: 120px;
}

#verification-code-success .login-container .orange-btn {
    margin-top: 205px;
}

#verification-code-success .login-container,
#congratulations .login-container {
    text-align: center;
}

#verification-code-success .login-container .subtitle-contain img {
    display: none;
}

#verification-code-success .login-container .title {
    font-size: 28px;
    line-height: 33px;
    margin-top: 20px;
}

#verification-code-success .login-container .subtitle-contain {
    margin-top: 40px;
}

#verification-code-success .login-container {
    padding-top: 100px;
}

#become-a-tutor .banner .title h2,
#first-stap-modal .banner .title h2 {
    position: absolute;
    top: 0px;
    left: 40px;
    color: white;
    font-weight: 700;
    font-size: 25px;
}

#login-modal label.error,
#create-account-modal label.error,
#verification-code-form label.error {
    margin-bottom: 0px !important;
}

#congratulations .subtitle-contain {
    justify-content: space-around;
}

#congratulations .login-container .orange-btn {
    padding: 0 60px;
}

#congratulations .login-container .title {
    padding-top: 20px;
    font-size: 27px;
}

#congratulations .login-container {
    padding: 40px 40px 28px 40px;
}

#first-stap-modal .banner img {
    width: 100%;
}

#first-stap-modal .title h2 {
    font-size: 24px !important;
}

#first-stap-modal .btn-step {
    display: flex;
    justify-content: flex-end;
    padding-top: 40px;
}

#first-stap-modal .uk-accordion-title {
    display: contents;
}

.veri-gizliligi {
    font-size: 16px;
    color: #607B96;
    display: flex;
    justify-content: flex-end;
}

#first-stap-modal,
#terms-of-use,
#privacy-policy {
    font-size: 12px;
}

#first-stap-modal .banner img,
#privacy-policy-modal .banner img {
    width: 100%;
}

#first-stap-modal .title h2 {
    font-size: 24px !important;
}

#first-stap-modal .list-steps,
#privacy-policy-modal .list-steps {
    font-size: 14px !important;
    margin-top: 30px;
    color: #0B3F54;
    line-height: 24px;
    border-bottom: 1px solid rgb(96, 123, 150, 0.2);
}

.aqua-btn {
    background: linear-gradient(90deg, var(--c1, #05B1B7) 0%, var(--c2, #00CDAC) 50%, var(--c2, #05B1B7) 100%) var(--x, 0)/ 200%;
}

#first-stap-modal .aqua-btn {
    padding: 18px 50px;
    padding: 0 40px !important;
    float: right !important;
    display: block;
}

#first-stap-modal .btn-step {
    display: flex;
    justify-content: flex-end;
    padding-top: 40px;
}

#first-stap-modal .grey-btn {
    margin-right: 20px;
}

.grey-btn {
    background: #E7F0F7;
    color: #607B96 !important;
}

.grey-btn:hover {
    background: #cccccc;
}

#first-stap-modal .uk-accordion-title {
    display: contents;
}

#first-stap-modal .uk-accordion-content {
    padding-top: 10px !important;
}

.veri-gizliligi {
    font-size: 16px;
    color: #607B96;
    display: flex;
    justify-content: flex-end;
}

#first-stap-modal,
#terms-of-use {
    font-size: 12px;
}

#first-stap-modal .uk-modal-dialog .saglayici {
    margin-left: 20px;
}

#first-stap-modal .uk-modal-dialog .saglayici:hover {
    text-decoration: underline;
}

#first-stap-modal .uk-modal-dialog .saglayici:hover,
#first-stap-modal .uk-modal-dialog .data-first:hover {
    text-decoration: underline;
}

.veri-gizliligi {
    margin-top: 10px;
}

#first-stap-modal .uk-modal-custom-width,
#privacy-policy-modal .uk-modal-custom-width {
    width: 1172px;
}

#first-stap-modal .check-steps-wrappers {
    display: flex;
    padding-left: 35px;
    font-size: 14px;
    color: #0B3F54;
}

#first-stap-modal .check-steps-wrappers .checks-steps {
    margin-right: 50px;
}

#first-stap-modal .title {
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
}

#first-stap-modal .sub-title {
    font-size: 14px;
    font-weight: normal;
    line-height: 24px;
}

#first-stap-modal .checkbox-contain {
    display: flex;
}

#first-stap-modal .checkbox-contain .title-and-sub {
    margin-left: 10px;
}

#first-stap-modal input {
    width: 24px;
    height: 24px;
    border-radius: 0.25em;
    margin-right: 5px;
    margin-top: 3px;
    display: inline-block;
}

#first-stap-modal input:checked {
    background-color: #FF6D43 !important;
    border-color: #FF6D43 !important;
    color: white;
}

#first-stap-modal .title-and-sub .title {
    margin-bottom: 20px;
}

#first-stap-modal .title-and-sub {
    margin-top: 5px;
}

#first-stap-modal .uk-accordion-title::before {
    background-image: url("/assets/images/modal-accordion-icon.svg") !important;
    margin-top: 30px;
    width: 100%;
}

#first-stap-modal .uk-open>.uk-accordion-title::before {
    transform: rotate(180deg);
}

#first-stap-modal .login-container ul li {
    padding: 34px 40px 80px;
    background: #EDF4F9;
}

#first-stap-modal .uk-accordion>:nth-child(n+2) {
    margin-top: 0;
}

.checks .select-all {
    font-size: 16px;
    color: #0B3F54;
    padding-top: 55px;
    padding: 50px 40px 45px 40px
}

#first-stap-modal .checks {
    min-height: 500px !important;
    display: none;
}

#first-stap-modal .login-container li:nth-child(odd) {
    background: #EDF4F9;
}

#first-stap-modal .login-container li:nth-child(even) {
    background: transparent;
}

#first-stap-modal.hide-show .checks {
    display: block;
}

#privacy-policy-modal .switcher-content .title {
    font-size: 15px;
    background-image: url("/assets/images/mockups/tutor-modal.svg") !important;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 104px;
}

#privacy-policy-modal .uk-subnav-pill>*>:first-child {
    padding: 5px 45px;
    border-radius: 10px;
}

#privacy-policy-modal .uk-subnav-pill>.uk-active>a {
    background-color: #0D303F;
}

#privacy-policy-modal .uk-subnav>*>:first-child {
    text-transform: none !important;
    color: white !important;
}

#privacy-policy-modal .uk-subnav-pill>*>a:hover {
    background-color: #0D303F;
}

#privacy-policy-modal .uk-subnav {
    justify-content: center;
}

#privacy-policy-modal .uk-modal-dialog {
    border-radius: 15px;
}

#privacy-policy-modal .uk-switcher {
    padding: 40px;
}

#privacy-policy-modal .privacy-policy-text {
    font-size: 14px;
    color: #0B3F54;
    line-height: 24px;
}

.veri-gizliligi a {
    text-decoration: none;
    color: inherit;
}

#first-stap-modal .title h2 span {
    color: #FF6D43;
}

.footer-massage p {
    text-align: center;
    font-size: 12px;
}

.promo .promo-images {
    padding-top: 90px;
    padding-bottom: 90px;
    align-items: center;
}

.promo .promo-images .video {
    margin-top: 60px;
}

.promo .promo-images .video .plyr {
    border-radius: 10px;
}

.uk-icon:not(.uk-preserve) [stroke*='#']:not(.uk-preserve) {
    stroke: #0B3F54;
}

[class*='uk-modal-close-'] {
    right: 20px;
    top: 20px;
}

@media screen and (max-width: 768px) {
    .social-icons div {
        padding: 10px 25px;
    }
    .btn-step {
        flex-direction: column;
    }
    .btn-step .grey-btn {
        margin-right: 0px !important;
    }
    .veri-gizliligi {
        justify-content: center;
    }
    #first-stap-modal .list-steps {
        padding: 0px 20px 50px 20px;
    }
    #first-stap-modal .login-container ul li {
        padding: 34px 20px 80px 20px;
        background: #EDF4F9;
    }
    #first-stap-modal .check-steps-wrappers {
        flex-direction: column;
    }
    #first-stap-modal input {
        width: 28px;
        height: 28px;
    }
    #first-stap-modal .check-steps-wrappers .checks-steps {
        margin-bottom: 15px;
    }
    .checks .select-all {
        padding: 50px 20px 45px 20px;
    }
    #first-stap-modal .title h2 {
        font-size: 20px !important;
        list-style: 24px !important;
        left: 15px !important;
    }
    #privacy-policy-modal .uk-switcher {
        padding: 20px;
    }
    #privacy-policy-modal .uk-subnav-pill>*>:first-child {
        padding: 5px 15px;
    }
}

@media (max-width:321px) {
    #first-stap-modal .title h2 {
        font-size: 16px !important;
        margin-top: 20px;
    }
}

.sticky-policy {
    background-color: #000;
    background-color: rgba(47, 47, 47, .95);
    color: #fff;
    text-align: center;
    padding: 15px 0;
    font-size: 12px;
    line-height: 14px;
    position: fixed;
    width: 100%;
    bottom: 0;
    z-index: 100000;
    box-sizing: border-box;
    display: none;
    margin: auto;
}

.sticky-policy a.cookie-policy-close {
    font-weight: normal;
    text-decoration: none !important;
    float: right;
    margin-right: 15px;
    font-size: 14px;
    color: white;
}

.content-success {
    margin: 120px 0px 130px 0px;
}

.content-success .img-wrap {
    margin-bottom: 30px;
}

.content-success .title h2 {
    font-weight: 700;
    font-size: 36px;
}

.content-success .title h2 {
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 15px;
}

.content-success .descriptions p {
    max-width: 450px;
    margin: 0 auto;
    padding: 0 10px;
}

.content-success .sat-team {
    margin-top: 80px;
}

.faq-title {
    font-size: 24px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 40px;
    color: var(--dark-green);
}

.uk-accordion li {
    padding: 30px 25px 30px 20px;
    background: white;
    border-radius: 10px;
}

.uk-accordion li a {
    padding: 0;
    width: 100%;
}

.uk-accordion-content p {
    padding-top: 0;
}

.uk-accordion-title {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
    color: #0B3F54;
    overflow: hidden;
}

.uk-accordion-title:hover {
    color: #0B3F54;
    text-decoration: none;
}

.uk-accordion .uk-open .uk-accordion-title {
    color: #FF744B;
}

.accordion-container .uk-accordion-content {
    padding-top: 0;
}

.uk-accordion-content {
    display: flow-root;
    padding-bottom: 0;
    margin-top: 0;
}

.uk-accordion-content p {
    color: var(--dark-green);
    font-size: 14px;
    font-weight: 400;
    padding-right: 20px;
    margin-top: 14px;
    line-height: 21px!important;
}


/* .uk-accordion-title::before {
  content: "";
  width: 1.4em;
  height: 1.4em;
  margin-left: 10px;
  float: right;
  background-image: url("../icon/close-accordion.svg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.uk-open>.uk-accordion-title::before {
  background-image: url("../icon/open-accordion.svg");
} */

.faq-accordion .uk-accordion li {
    padding: 0;
}

.faq-accordion .uk-accordion li a {
    padding: 30px 0 30px 0;
    background: #fff;
    border-radius: 10px;
    margin-left: 15px;
    width: calc(100% - 15px);
}

.faq-accordion .uk-accordion-title::before {
    margin-right: 20px;
}

.faq-accordion .uk-accordion-content p {
    padding-left: 15px;
    margin-bottom: 20px;
    margin-top: 0;
}

.faq-accordion .uk-accordion-content p > * {
    font-family: "Inter", sans-serif!important;
}

.faq-accordion .uk-accordion-title {
    transition: .1s ease padding-bottom;
}

.faq-accordion .uk-open .uk-accordion-title {
    padding-bottom: 14px;
}

.faq-accordion .uk-accordion-content {
    visibility: hidden;
    transition: 3s ease visibility;
}

.faq-accordion .uk-open .uk-accordion-content {
    visibility: visible
}

.faq-accordion .uk-accordion {
    margin-bottom: 100px;
}
.features.features-position{
    top: -120px;
}
.promo-images.features-promo{
    padding:0px;
}

header .bottom-width {
    min-width:150px;
}

.uk-navbar-nav > li > a.outline-button {
    background: white;
    border: 1px solid #FF4E22;
    margin-right: 15px;
    color: #FF4E22!important;
}